/* ==========================================
   ABOUT US PAGE — inherits shared CSS
   ========================================== */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, #3a5a40 0%, #588157 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.page-hero .breadcrumb {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Content */
.about-us {
    padding: 80px 40px;
    background: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a2e1c;
    margin-bottom: 24px;
}

.about-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #3a5a40;
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f0e8;
}

.about-content p {
    font-size: 15.5px;
    color: #4a5e4b;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-content ul {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-content ul li {
    font-size: 15px;
    color: #4a5e4b;
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3a5a40;
    font-weight: 700;
}

.about-content a {
    color: #3a5a40;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact info styles (for pre-header in about page) */
.contact-info a {
    color: inherit;
    text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }

/* Brand Strip (reuse from Home.css if linked) */
.brand-strip {
    background-color: #fff;
    border-top: 1px solid #e8e4dd;
    border-bottom: 1px solid #e8e4dd;
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
}

.brand-marquee {
    display: inline-flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.brand-marquee:hover { animation-play-state: paused; }

.brand-marquee p {
    display: inline-block;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 500;
    color: #a3b18a;
}
.brand-marquee p:hover { color: #3a5a40; }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .page-hero { padding: 60px 20px; }
    .page-hero h1 { font-size: 32px; }
    .about-us { padding: 60px 20px; }
}
